home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-03-08 | 381 b | 15 lines | [TEXT/dIsR] |
- script DelayNext
- -- Execution begins at the first state-- "one" in this case
- state one
- display "I'll wait ten seconds and then go to the next state\r";
- delay 10;
- next "two";
- display "This statement never gets executed\r";
- end;
-
- state two
- display "I am at state two\r";
- end; -- Script terminates when it hits "end"
-
- end;
-